home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / MEdit 1.5 / RtoAsm.mcr < prev    next >
Encoding:
Text File  |  1986-04-18  |  284 b   |  18 lines  |  [TEXT/ttxt]

  1. *
  2. * this macro puts a $ in col 0 and moves to the next line
  3. "Hex it/H" {
  4.     select(L.,0);
  5.     insert("$");
  6.     select(L.+1,0);
  7. };
  8.  
  9. *
  10. * this puts a ',' at the end of the current line, then removes the CR
  11. "Add Hex/A" {
  12.     select(L.,C$);
  13.     insert(",");
  14.     find("\n");
  15.     cut;
  16. }.
  17.  
  18.